home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / dev / src / expat-src.lha / expat-1.95.2 / include / expat / expatbase.h < prev   
Encoding:
C/C++ Source or Header  |  2001-09-18  |  579 b   |  33 lines

  1. /*
  2. **      $VER: expatbase.h 1.0 (1/8/01)
  3. **
  4. **      definition of ExpatBase
  5. **
  6. */
  7.  
  8. #ifndef EXPAT_EXPATBASE_H
  9. #define EXPAT_EXPATBASE_H
  10.  
  11. #ifdef   __MAXON__
  12. #ifndef  EXEC_LIBRARIES_H
  13. #include <exec/libraries.h>
  14. #endif
  15. #else
  16. #ifndef  EXEC_LIBRARIES
  17. #include <exec/libraries.h>
  18. #endif /* EXEC_LIBRARIES_H */
  19. #endif
  20.  
  21. #include <dos/dos.h>
  22.  
  23. struct ExpatBase
  24. {
  25.   struct Library         exb_LibNode;
  26.   BPTR             exb_SegList;
  27.   struct ExecBase       *exb_SysBase;
  28.   struct IntuitionBase  *exb_IntuitionBase;
  29.   struct GfxBase        *exb_GfxBase;
  30. };
  31.  
  32. #endif /* EXPAT_EXPATBASE_H */
  33.